-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
30 lines (27 loc) · 1.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Simon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
</head>
<body>
<h1 id="level-title">Press Any Button to Start</h1>
<div class="container">
<div class="row">
<div type="button" id="green" class="btn green" onclick="handleButtonClick()"></div>
<div type="button" id="red" class="btn red" onclick="handleButtonClick()"></div>
</div>
<div class="row">
<div type="button" id="yellow" class="btn yellow" onclick="handleButtonClick()"></div>
<div type="button" id="blue" class="btn blue" onclick="handleButtonClick()"></div>
</div>
</div>
<button id="start-button" onclick="startGame()">Start Game</button>
<p>Made by Saketh.</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="game.js" charset="utf-8"></script>
</body>
</html>